home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / g / gnu_c / pmlsrc23.zoo / envtests / Makefile.minix next >
Encoding:
Makefile  |  1994-03-19  |  303 b   |  18 lines

  1. CC = mgcc
  2. CFLAGS = -O
  3. ALL = testfrexp testldexp testmodf
  4.  
  5. all : $(ALL)
  6.  
  7. testfrexp :        testfrexp.c
  8.             $(CC) $(CFLAGS) -o testfrexp testfrexp.c
  9.  
  10. testldexp :        testldexp.c
  11.             $(CC) $(CFLAGS) -o testldexp testldexp.c
  12.  
  13. testmodf :        testmodf.c
  14.             $(CC) $(CFLAGS) -o testmodf testmodf.c
  15.  
  16. clean:
  17.     rm -f *.o $(ALL)
  18.